# HG changeset patch # User Rik # Date 1515340031 28800 # Node ID e891b6dd7e3527344c78a43bb38a4bd4c5088abe # Parent 59d080a90f1760a60b5ba8ed6548137bc307359c doc: Use '...' rather than deprecated '\' for line continuation (bug #52828). * diffeq.txi: Replace '\' for line continuation outside of double-quoted string with '...' in example code. diff -r 59d080a90f17 -r e891b6dd7e35 doc/interpreter/diffeq.txi --- a/doc/interpreter/diffeq.txi Thu Jan 04 11:23:12 2018 -0800 +++ b/doc/interpreter/diffeq.txi Sun Jan 07 07:47:11 2018 -0800 @@ -74,7 +74,7 @@ xdot = zeros (3,1); - xdot(1) = 77.27 * (x(2) - x(1)*x(2) + x(1) \ + xdot(1) = 77.27 * (x(2) - x(1)*x(2) + x(1) ... - 8.375e-06*x(1)^2); xdot(2) = (x(3) - x(1)*x(2) - x(2)) / 77.27; xdot(3) = 0.161*(x(1) - x(3)); @@ -101,7 +101,7 @@ @example @group -t = [0, logspace(-1, log10(303), 150), \ +t = [0, logspace(-1, log10(303), 150), ... logspace(log10(304), log10(500), 150)]; @end group @end example