Skip to content

Commit 6f559ed

Browse files
committed
update copyright notices
1 parent 03b8308 commit 6f559ed

File tree

10 files changed

+20
-53
lines changed

10 files changed

+20
-53
lines changed

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) Facebook, Inc. and its affiliates.
3+
Copyright (c) The partial-io Contributors.
4+
Originally copyright (c) Facebook, Inc. and its affiliates.
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

examples/buggy_write.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
//! An example of a buggy buffered writer that does not handle
95
//! `io::ErrorKind::Interrupted` properly.

publish-docs.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/bin/bash
2-
# Copyright (c) Facebook, Inc. and its affiliates.
3-
#
4-
# This source code is licensed under the MIT license found in the
5-
# LICENSE file in the root directory of this source tree.
2+
# Copyright (c) The partial-io Contributors
3+
# SPDX-License-Identifier: MIT
64

75
# stop running if any of these steps fail
86
set -e

src/async_read.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
//! This module contains an `AsyncRead` wrapper that breaks its inputs up
95
//! according to a provided iterator.

src/async_write.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
//! This module contains an `AsyncWrite` wrapper that breaks writes up
95
//! according to a provided iterator.

src/futures_util.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
use crate::{make_ops, PartialOp};
95
use std::{

src/lib.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
#![deny(warnings)]
95

src/quickcheck_types.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
//! `QuickCheck` support for partial IO operations.
95
//!

src/read.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
//! This module contains a reader wrapper that breaks its inputs up according to
95
//! a provided iterator.

src/write.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*
2-
* Copyright (c) Facebook, Inc. and its affiliates.
3-
*
4-
* This source code is licensed under the MIT license found in the
5-
* LICENSE file in the root directory of this source tree.
6-
*/
1+
// Copyright (c) The partial-io Contributors
2+
// SPDX-License-Identifier: MIT
73

84
//! This module contains a writer wrapper that breaks writes up according to a
95
//! provided iterator.

0 commit comments

Comments
 (0)