From cede56abe15d24a240b3581971bd97b51cac9634 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Thu, 17 Oct 2019 11:06:34 +0100 Subject: [PATCH] Fix small typo --- lib/include/srslte/upper/pdcp_entity_nr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/include/srslte/upper/pdcp_entity_nr.h b/lib/include/srslte/upper/pdcp_entity_nr.h index 6eef88e1d..f465f6d86 100644 --- a/lib/include/srslte/upper/pdcp_entity_nr.h +++ b/lib/include/srslte/upper/pdcp_entity_nr.h @@ -61,7 +61,7 @@ public: // RLC interface void write_pdu(unique_byte_buffer_t pdu); - // State variable settters (should be used only for testing) + // State variable setters (should be used only for testing) void set_tx_next(uint32_t tx_next_) { tx_next = tx_next_; } void set_rx_next(uint32_t rx_next_) { rx_next = rx_next_; } void set_rx_deliv(uint32_t rx_deliv_) { rx_deliv = rx_deliv_; }