Update some URLs in comments

This commit is contained in:
Paul Romano 2020-04-22 22:35:54 -05:00
parent 2be00dfdbc
commit fd24191d31
2 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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 "
"<http://openmc.readthedocs.io/en/latest/license.html>\n");
"<https://docs.openmc.org/en/latest/license.html>\n");
}
}