From a8572ad328f1e02fa294d9e9d0c350a41cb95da9 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Sat, 15 Apr 2017 09:23:47 -0700 Subject: [PATCH] Update link to iso.org per #888 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3805efa..825bbda 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19707,7 +19707,7 @@ More information on many topics about C++ can be found on the [Standard C++ Foun * *invariant*: something that must be always true at a given point (or points) of a program; typically used to describe the state (set of values) of an object or the state of a loop before entry into the repeated statement. * *iteration*: the act of repeatedly executing a piece of code; see recursion. * *iterator*: an object that identifies an element of a sequence. -* *ISO*: International Organization for Standardization. The C++ language is an ISO standard, ISO/IEC 14882. More information at [iso.org](iso.org). +* *ISO*: International Organization for Standardization. The C++ language is an ISO standard, ISO/IEC 14882. More information at [iso.org](http://iso.org). * *library*: a collection of types, functions, classes, etc. implementing a set of facilities (abstractions) meant to be potentially used as part of more that one program. * *lifetime*: the time from the initialization of an object until it becomes unusable (goes out of scope, is deleted, or the program terminates). * *linker*: a program that combines object code files and libraries into an executable program.