Skip to content
This repository was archived by the owner on Jul 7, 2022. It is now read-only.

Fix typos in documentation #1

Merged
merged 1 commit into from
Jan 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Arduino_CRC32
=============

This Arduino library provides a simple interface to perform checkum calculations utilizing CRC-32 algorithm. The C code for the CRC-32 algorithm was generated using [PyCRC](https://pycrc.org) with the predefined [crc-32 model](https://pycrc.org/models.html#crc-32).
This Arduino library provides a simple interface to perform checksum calculations utilizing the CRC-32 algorithm. The C code for the CRC-32 algorithm was generated using [PyCRC](https://pycrc.org) with the predefined [crc-32 model](https://pycrc.org/models.html#crc-32).

## Usage

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name=Arduino_CRC32
version=1.0.0
author=Alexander Entinger <[email protected]>
maintainer=Alexander Entinger <[email protected]>
sentence=Arduino library providing a simple interface to perform checkum calculations utilizing CRC-32 algorithm.
sentence=Arduino library providing a simple interface to perform checksum calculations utilizing the CRC-32 algorithm.
paragraph=
category=Data Processing
url=https://github.com/arduino-libraries/Arduino_CRC32
Expand Down
2 changes: 1 addition & 1 deletion src/Arduino_CRC32.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2020 Arduino. All right reserved.
Copyright (c) 2020 Arduino. All rights reserved.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down
2 changes: 1 addition & 1 deletion src/Arduino_CRC32.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2020 Arduino. All right reserved.
Copyright (c) 2020 Arduino. All rights reserved.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand Down