diff --git a/NEWS b/NEWS
index 5b4dde3c5d..4994614448 100644
--- a/NEWS
+++ b/NEWS
@@ -74,7 +74,8 @@ with all sufficient information, see the ChangeLog file.
* Kernel
* added method:
* added Kernel#Hash conversion method like Array() or Float().
- * added Kernel#__dir__, a shorthand for File.realdirpath(__FILE__).
+ * added Kernel#__dir__ which returns the absolute path of the
+ directory of the file from which this method is called.
* added Kernel#caller_locations which returns an array of
frame information objects.
* extended method:
diff --git a/eval.c b/eval.c
index 622bfedf76..c4bda48524 100644
--- a/eval.c
+++ b/eval.c
@@ -1508,7 +1508,7 @@ rb_f_callee_name(void)
* Returns the canonicalized absolute path of the directory of the file from
* which this method is called. It means symlinks in the path is resolved.
* If __FILE__
is nil
, it returns nil
.
- * The return value equals to File.realdirpath(__FILE__)
.
+ * The return value equals to File.dirname(File.realpath(__FILE__))
.
*
*/
static VALUE