From 8bffbbe5b017140f5d22d23aea8e847aa9b614e4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 3 Feb 2022 09:46:22 +0200 Subject: [PATCH] Fix typo --- doc/source_location.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source_location.adoc b/doc/source_location.adoc index ff24d6c..bed61cd 100644 --- a/doc/source_location.adoc +++ b/doc/source_location.adoc @@ -75,7 +75,7 @@ constexpr source_location( std::source_location const& loc ) noexcept; Effects: :: Constructs a `source_location` object for which `file_name()` returns `loc.file_name()`, `function_name()` returns `loc.function_name()`, -`line()` returns `loc.line()` argument and `column()` returns `loc.column()`. +`line()` returns `loc.line()` and `column()` returns `loc.column()`. ## to_string