summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--community/gsoc/project_ideas/object_lookups.mdwn3
-rw-r--r--community/meetings/ghm2016.mdwn2
-rw-r--r--faq/64-bit.mdwn2
-rw-r--r--faq/how_many_developers.mdwn4
-rw-r--r--faq/xserver-common.mdwn2
-rw-r--r--hurd/porting/guidelines.mdwn4
-rw-r--r--hurd/running/chroot.mdwn3
-rw-r--r--hurd/subhurd.mdwn4
-rw-r--r--open_issues/automatically_checking_port_deallocation.mdwn2
-rw-r--r--open_issues/libpthread.mdwn2
-rw-r--r--open_issues/robustness.mdwn2
-rw-r--r--open_issues/virtualization/fakeroot.mdwn2
-rw-r--r--public_hurd_boxen.mdwn4
13 files changed, 19 insertions, 17 deletions
diff --git a/community/gsoc/project_ideas/object_lookups.mdwn b/community/gsoc/project_ideas/object_lookups.mdwn
index 43bed087..d7a5831e 100644
--- a/community/gsoc/project_ideas/object_lookups.mdwn
+++ b/community/gsoc/project_ideas/object_lookups.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2013, 2014 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2013, 2014, 2016 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/community/meetings/ghm2016.mdwn b/community/meetings/ghm2016.mdwn
index 590e1ad4..74f86ff6 100644
--- a/community/meetings/ghm2016.mdwn
+++ b/community/meetings/ghm2016.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2013 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2016 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/faq/64-bit.mdwn b/faq/64-bit.mdwn
index 183c9e85..1c75e1dc 100644
--- a/faq/64-bit.mdwn
+++ b/faq/64-bit.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2013 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2013, 2016 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/faq/how_many_developers.mdwn b/faq/how_many_developers.mdwn
index 687d6531..a4d4910e 100644
--- a/faq/how_many_developers.mdwn
+++ b/faq/how_many_developers.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010, 2011, 2013 Free Software Foundation,
+[[!meta copyright="Copyright © 2010, 2011, 2013, 2016 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
@@ -17,7 +17,7 @@ few?"]]
# How Many Developers?
-Litteraly only one handful works on the core of the system in their free time, and another
+Literally only one handful works on the core of the system in their free time, and another
handful helps with [[Debian GNU/Hurd|hurd/running/debian]] and
[[hurd/running/Arch_Hurd]] packaging. Also, an additional handful of former
developers are still available for answering technical questions, but are not
diff --git a/faq/xserver-common.mdwn b/faq/xserver-common.mdwn
index 1e7d5d66..ea3c9e46 100644
--- a/faq/xserver-common.mdwn
+++ b/faq/xserver-common.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2007, 2008, 2013 Free Software Foundation,
+[[!meta copyright="Copyright © 2007, 2008, 2013, 2016 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
diff --git a/hurd/porting/guidelines.mdwn b/hurd/porting/guidelines.mdwn
index 46a2bf22..33888685 100644
--- a/hurd/porting/guidelines.mdwn
+++ b/hurd/porting/guidelines.mdwn
@@ -181,7 +181,7 @@ Fixed code:
Replace with `getrlimit(RLIMIT_NOFILE,...)`
-## <a name="mach_darwin"> ifdef __MACH__ </a>
+## <a name="mach_darwin"> `#ifdef __MACH__` </a>
Some applications put Apple Darwin-specific code inside `#ifdef __MACH__`
guards. Such guard is clearly not enough, since not only Apple uses Mach as a
@@ -191,7 +191,7 @@ kernel. This should be replaced by `#if defined(__MACH__) && defined(__APPLE__)`
Some applications unconditionally use Darwin-specific functions coming
from `mach/clock.h` to get the clock. This is unnecessarily unportable,
-`clock_gettime` can simply be used instead, and the ifdef __MACH__ guard for the `mach/clock.h`
+`clock_gettime` can simply be used instead, and the `#ifdef __MACH__` guard for the `mach/clock.h`
inclusion be fixed as explained above.
## <a name="GNU_specific_define_tt_"> </a> GNU specific `#define`
diff --git a/hurd/running/chroot.mdwn b/hurd/running/chroot.mdwn
index 66ecc24c..eac67282 100644
--- a/hurd/running/chroot.mdwn
+++ b/hurd/running/chroot.mdwn
@@ -1,4 +1,5 @@
-[[!meta copyright="Copyright © 2012, 2013 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2012, 2013, 2016 Free Software Foundation,
+Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/hurd/subhurd.mdwn b/hurd/subhurd.mdwn
index c9fe15d2..7b6cad67 100644
--- a/hurd/subhurd.mdwn
+++ b/hurd/subhurd.mdwn
@@ -1,5 +1,5 @@
-[[!meta copyright="Copyright © 2007, 2008, 2010, 2011, 2013, 2014 Free Software
-Foundation, Inc."]]
+[[!meta copyright="Copyright © 2007, 2008, 2010, 2011, 2013, 2014, 2016 Free
+Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/open_issues/automatically_checking_port_deallocation.mdwn b/open_issues/automatically_checking_port_deallocation.mdwn
index e8a4389e..1c59dd7c 100644
--- a/open_issues/automatically_checking_port_deallocation.mdwn
+++ b/open_issues/automatically_checking_port_deallocation.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010 Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2010, 2016 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
diff --git a/open_issues/libpthread.mdwn b/open_issues/libpthread.mdwn
index 274e7e32..c628bc7b 100644
--- a/open_issues/libpthread.mdwn
+++ b/open_issues/libpthread.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010, 2011, 2012, 2013, 2014 Free Software
+[[!meta copyright="Copyright © 2010, 2011, 2012, 2013, 2014, 2016 Free Software
Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
diff --git a/open_issues/robustness.mdwn b/open_issues/robustness.mdwn
index 3ba9bb3d..dec0e474 100644
--- a/open_issues/robustness.mdwn
+++ b/open_issues/robustness.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2011, 2013, 2014 Free Software Foundation,
+[[!meta copyright="Copyright © 2011, 2013, 2014, 2016 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
diff --git a/open_issues/virtualization/fakeroot.mdwn b/open_issues/virtualization/fakeroot.mdwn
index b8604ff7..345f112c 100644
--- a/open_issues/virtualization/fakeroot.mdwn
+++ b/open_issues/virtualization/fakeroot.mdwn
@@ -1,4 +1,4 @@
-[[!meta copyright="Copyright © 2010, 2013, 2014 Free Software Foundation,
+[[!meta copyright="Copyright © 2010, 2013, 2014, 2016 Free Software Foundation,
Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
diff --git a/public_hurd_boxen.mdwn b/public_hurd_boxen.mdwn
index b89fe550..4cd9b46e 100644
--- a/public_hurd_boxen.mdwn
+++ b/public_hurd_boxen.mdwn
@@ -1,5 +1,5 @@
-[[!meta copyright="Copyright © 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
-Free Software Foundation, Inc."]]
+[[!meta copyright="Copyright © 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013,
+2016 Free Software Foundation, Inc."]]
[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this