From 9d0a2d4f3e576ac46f16c1c8d7fd5ce638bd7913 Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Sat, 19 Sep 2015 09:00:11 -0700 Subject: [PATCH] Fix DataLinkType typo on doxygen docs [ci skip] --- include/tins/offline_packet_filter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tins/offline_packet_filter.h b/include/tins/offline_packet_filter.h index 6c0f099..4c1ce36 100644 --- a/include/tins/offline_packet_filter.h +++ b/include/tins/offline_packet_filter.h @@ -57,7 +57,7 @@ class PDU; * UDP udp = get_packet(); * * // Create the filter. We'll be expecting Ethernet packets. - * OfflinePacketFilter filter("ip and port 80", DataLinkLayer()); + * OfflinePacketFilter filter("ip and port 80", DataLinkType()); * * // We can use this directly over the inner PDU (assuming it has one) * // See the notes on the efficiency of doing it this way.