@@ -360,11 +360,11 @@ are now available through the dot notation.
360360.. cmd :: Print Namespace @dirpath
361361
362362 Prints the names and types of all loaded constants whose fully qualified
363- names start with :n: `@dirpath `. For example, the command ``Print Namespace Stdlib . ``
364- displays the names and types of all loaded constants in the standard library.
365- The command ``Print Namespace Stdlib .Init `` only shows constants defined in one
363+ names start with :n: `@dirpath `. For example, the command ``Print Namespace Corelib . ``
364+ displays the names and types of all loaded constants in the core library.
365+ The command ``Print Namespace Corelib .Init `` only shows constants defined in one
366366 of the files in the ``Init `` directory. The command ``Print Namespace
367- Stdlib .Init.Nat `` shows what is in the ``Nat `` library file inside the ``Init ``
367+ Corelib .Init.Nat `` shows what is in the ``Nat `` library file inside the ``Init ``
368368 directory. Module names may appear in :n: `@dirpath `.
369369
370370 .. example ::
@@ -562,7 +562,7 @@ While qualified names always consist of a series of dot-separated :n:`@ident`\s,
562562
563563**File part. ** Files are identified by :gdef: `logical paths <logical path> `,
564564which are prefixes in the form :n: `{* @ident__logical } {+ @ident__file } `, such
565- as :n: `Stdlib .Init.Logic `, in which:
565+ as :n: `Corelib .Init.Logic `, in which:
566566
567567- :n: `{* @ident__logical } `, the :gdef: `logical name `, maps to one or more
568568 directories (or :gdef: `physical paths <physical path> `) in the user's file system.
@@ -587,14 +587,14 @@ with the logical name :n:`Top` and there is no associated file system path.
587587
588588- :n: `@ident__base ` is the base name used in the command defining
589589 the item. For example, :n: `eq ` in the :cmd: `Inductive ` command defining it
590- in `Stdlib .Init.Logic ` is the base name for `Stdlib .Init.Logic.eq `, the standard library
590+ in `Corelib .Init.Logic ` is the base name for `Corelib .Init.Logic.eq `, the core library
591591 definition of :term: `Leibniz equality `.
592592
593593If :n: `@qualid ` is the fully qualified name of an item, Rocq
594594always interprets :n: `@qualid ` as a reference to that item. If :n: `@qualid ` is also a
595595partially qualified name for another item, then you must provide a more-qualified
596596name to uniquely identify that other item. For example, if there are two
597- fully qualified items named `Foo.Bar ` and `Stdlib .X.Foo.Bar `, then `Foo.Bar ` refers
597+ fully qualified items named `Foo.Bar ` and `Corelib .X.Foo.Bar `, then `Foo.Bar ` refers
598598to the first item and `X.Foo.Bar ` is the shortest name for referring to the second item.
599599
600600Definitions with the :attr: `local ` attribute are only accessible with
0 commit comments