From b2a44f8dbdc21159c4be5739680b5009edd797c0 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 28 Jan 2021 22:58:17 -0800 Subject: [PATCH] Tweaked comment format and bumped copyright year --- LICENSE | 2 +- bb.c | 8 ++++---- draw.h | 6 +++++- terminal.c | 10 +++++----- terminal.h | 10 +++++----- types.h | 8 ++++---- utils.h | 8 ++++---- 7 files changed, 28 insertions(+), 24 deletions(-) diff --git a/LICENSE b/LICENSE index b692a92..afc8d25 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ MIT License -Copyright 2019 Bruce Hill +Copyright 2020 Bruce Hill Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/bb.c b/bb.c index 2280ca7..23ff76f 100644 --- a/bb.c +++ b/bb.c @@ -1,9 +1,9 @@ // -// Bitty Browser (bb) -// Copyright 2019 Bruce Hill -// Released under the MIT license +// bb.c +// Copyright 2020 Bruce Hill +// Released under the MIT license // -// This file contains the main source code of `bb`. +// This file contains the main source code of `bb` the Bitty Browser. // #include diff --git a/draw.h b/draw.h index 7fae87d..f6ebd75 100644 --- a/draw.h +++ b/draw.h @@ -1,5 +1,9 @@ // -// draw.h - This file contains definitions for bb column-drawing code. +// draw.h +// Copyright 2020 Bruce Hill +// Released under the MIT license +// +// This file contains definitions for bb column-drawing code. // #ifndef FILE_COLUMNS__H diff --git a/terminal.c b/terminal.c index 27b8e2f..09debb6 100644 --- a/terminal.c +++ b/terminal.c @@ -1,10 +1,10 @@ // -// terminal.c -// Copyright 2019 Bruce Hill -// Released under the MIT License +// terminal.c +// Copyright 2020 Bruce Hill +// Released under the MIT License // -// Implementations of some basic terminal stuff, like reading keys and some -// terminal escape sequences. +// Implementations of some basic terminal stuff, like reading keys and some +// terminal escape sequences. // #include diff --git a/terminal.h b/terminal.h index c22754d..2189f35 100644 --- a/terminal.h +++ b/terminal.h @@ -1,10 +1,10 @@ // -// terminal.h -// Copyright 2019 Bruce Hill -// Released under the MIT License +// terminal.h +// Copyright 2020 Bruce Hill +// Released under the MIT License // -// Definitions of some basic terminal stuff, like reading keys and some -// terminal escape sequences. +// Definitions of some basic terminal stuff, like reading keys and some +// terminal escape sequences. // #ifndef FILE__TERMINAL_H diff --git a/types.h b/types.h index 531bfa3..984049f 100644 --- a/types.h +++ b/types.h @@ -1,9 +1,9 @@ // -// types.h -// Copyright 2019 Bruce Hill -// Released under the MIT license +// types.h +// Copyright 2020 Bruce Hill +// Released under the MIT license // -// This file contains definitions of different types. +// This file contains definitions of different types. // #ifndef FILE_TYPES__H #define FILE_TYPES__H diff --git a/utils.h b/utils.h index 65e7aaa..7408eae 100644 --- a/utils.h +++ b/utils.h @@ -1,9 +1,9 @@ // -// utils.h -// Copyright 2020 Bruce Hill -// Released under the MIT license +// utils.h +// Copyright 2020 Bruce Hill +// Released under the MIT license // -// This file contains some definitions of some utility macros. +// This file contains some definitions of some utility macros. // #ifndef FILE_UTILS__H