aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--README.EXT6
2 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index d7e13216a5..fa3f8e04e2 100644
--- a/NEWS
+++ b/NEWS
@@ -110,5 +110,5 @@ with all sufficient information, see the ChangeLog file.
* `rb_str_substr()` and `rb_str_subseq()` now share middle of a string,
but not only the end of a string. Therefore, result strings may not
- be NULL-terminated, `StringValueCStr()` is needed calling to obtain a
- NULL-terminated C string.
+ be NUL-terminated, `StringValueCStr()` is needed calling to obtain a
+ NUL-terminated C string.
diff --git a/README.EXT b/README.EXT
index a60d559092..d66d6c5576 100644
--- a/README.EXT
+++ b/README.EXT
@@ -1088,7 +1088,7 @@ RSTRING_LEN(str) ::
RSTRING_PTR(str) ::
String -> pointer to String data
- Note that the result pointer may not be NULL-terminated
+ Note that the result pointer may not be NUL-terminated
StringValue(value) ::
@@ -1100,8 +1100,8 @@ StringValuePtr(value) ::
StringValueCStr(value) ::
- Object with #to_str -> pointer to String data without NULL bytes
- It is guaranteed that the result data is NULL-terminated
+ Object with #to_str -> pointer to String data without NUL bytes
+ It is guaranteed that the result data is NUL-terminated
rb_str_new2(s) ::