From fd24191d31c4c1b3759b360cdbbec006453b9d36 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 22 Apr 2020 22:35:54 -0500 Subject: [PATCH] Update some URLs in comments --- src/cross_sections.cpp | 2 +- src/output.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cross_sections.cpp b/src/cross_sections.cpp index 22bf9c1ed..737d2a4aa 100644 --- a/src/cross_sections.cpp +++ b/src/cross_sections.cpp @@ -142,7 +142,7 @@ void read_cross_sections_xml() "materials.xml or in the OPENMC_MG_CROSS_SECTIONS environment " "variable. OpenMC needs such a file to identify where to " "find MG cross section libraries. Please consult the user's " - "guide at http://openmc.readthedocs.io for information on " + "guide at https://docs.openmc.org for information on " "how to set up MG cross section libraries."); } settings::path_cross_sections = envvar; diff --git a/src/output.cpp b/src/output.cpp index 96aec69d9..c429b2f59 100644 --- a/src/output.cpp +++ b/src/output.cpp @@ -75,7 +75,7 @@ void title() fmt::print( " | The OpenMC Monte Carlo Code\n" " Copyright | 2011-2020 MIT and OpenMC contributors\n" - " License | http://openmc.readthedocs.io/en/latest/license.html\n" + " License | https://docs.openmc.org/en/latest/license.html\n" " Version | {}.{}.{}{}\n", VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE, VERSION_DEV ? "-dev" : ""); #ifdef GIT_SHA1 @@ -328,9 +328,9 @@ void print_version() #ifdef GIT_SHA1 fmt::print("Git SHA1: {}\n", GIT_SHA1); #endif - fmt::print("Copyright (c) 2011-2019 Massachusetts Institute of " + fmt::print("Copyright (c) 2011-2020 Massachusetts Institute of " "Technology and OpenMC contributors\nMIT/X license at " - "\n"); + "\n"); } }