]> git.ozlabs.org Git - ccan/commitdiff
tal/str: use tal/grab_file not grab_file in example.
authorRusty Russell <rusty@rustcorp.com.au>
Mon, 18 Aug 2014 17:07:19 +0000 (02:37 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Mon, 18 Aug 2014 17:07:19 +0000 (02:37 +0930)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/tal/str/_info

index 6fd94dc5654093d3dc909f7175791784f70b9fd4..cb81c9e19df33a64eb0e6323810d3d3129d9ff7e 100644 (file)
@@ -11,7 +11,7 @@
  *
  * Example:
  *     #include <ccan/tal/str/str.h>
- *     #include <ccan/grab_file/grab_file.h>
+ *     #include <ccan/tal/grab_file/grab_file.h>
  *     #include <err.h>
  *
  *     // Dumb demo program to double-linespace a file.
@@ -21,7 +21,7 @@
  *             char **lines;
  *
  *             // Grab lines in file.
- *             textfile = grab_file(NULL, argv[1], NULL);
+ *             textfile = grab_file(NULL, argv[1]);
  *             if (!textfile)
  *                     err(1, "Failed reading %s", argv[1]);
  *             lines = tal_strsplit(textfile, textfile, "\n", STR_EMPTY_OK);